fix some stray references to mojibake in the bench/ directory
authorSteven G. Johnson <stevenj@alum.mit.edu>
Sat, 28 Mar 2015 18:38:59 +0000 (14:38 -0400)
committerSteven G. Johnson <stevenj@alum.mit.edu>
Sat, 28 Mar 2015 18:38:59 +0000 (14:38 -0400)
bench/Makefile
bench/bench.c

index 8b63f2c867600edf46e36000956e00f90309c5e8..629c68696fda413f3ed616a96ff96612369b5de9 100644 (file)
@@ -5,10 +5,10 @@ CFLAGS = -O2 -std=c99 -pedantic -Wall
 
 all: bench
 
-LIBMOJIBAKE = ../libmojibake.a
+LIBUTF8PROC = ../libutf8proc.a
 
-bench: bench.o util.o $(LIBMOJIBAKE)
-       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBMOJIBAKE)
+bench: bench.o util.o $(LIBUTF8PROC)
+       $(CC) $(CFLAGS) $(LDFLAGS) -o $@ bench.o util.o $(LIBUTF8PROC)
 
 DATAURL = https://raw.githubusercontent.com/duerst/eprun/master/benchmark
 DATAFILES = Deutsch_.txt Japanese_.txt Korean_.txt Vietnamese_.txt
index fd0e9ac4a15004b2e6a26b17a2b05349a6127649..21685c5bfe960523906820df8c0c6dd9a892a3a2 100644 (file)
@@ -2,7 +2,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include "mojibake.h"
+#include "utf8proc.h"
 #include "util.h"
 
 int main(int argc, char **argv)